TextArea
Import
import TextArea from '@govuk-react/text-area';
Usage
Simple
<TextArea name="group1">Description of what you saw</TextArea>
TextArea with hint text
<TextArea name="group1" hint={['Enter as many words as you like']}>
Description of what you saw
</TextArea>
TextArea with hint text & error
const meta = {
touched: true,
error: 'Example',
};
<TextArea
name="group1"
hint={['Enter as many words as you like']}
meta={meta}
>
Description of what you saw
</TextArea>
References:
Properties
Prop | Required | Default | Type | Description |
---|
children | true | `````` | node | |
hint | | undefined | string | |
input | | {} | shape[object Object] | |
meta | | {} | shape[object Object] | |